home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / UTIL_SRC / C016.ZIP / CALC / SU.H < prev    next >
Text File  |  1990-01-19  |  691b  |  35 lines

  1. /* su.h - include file for SU Processing Line
  2.  *
  3.  * $Author: jkcohen $
  4.  * $Source: /mnt1/h/jkcohen/Psu/RCS/su.h,v $
  5.  * $Revision: 1.4 $ ; $Date: 87/03/14 23:36:17 $
  6. */
  7.  
  8. #ifndef STDIN
  9. #include <stdio.h>
  10. #include <math.h>
  11. #include <ctype.h>
  12. #include <errno.h>
  13. #include <fcntl.h>
  14.  
  15. #define        TRUE        1
  16. #define        FALSE        0
  17. #define        YES        1
  18. #define        NO        0
  19. #define        STDIN        0
  20. #define        STDOUT        1
  21. #define        STDERR        2
  22. #endif
  23.  
  24. extern int errno, sys_nerr;
  25. extern char *sys_errlist[];
  26.  
  27. int xargc;
  28. char **xargv;
  29.  
  30. extern void syserr(), err(), warn(), selfdoc();
  31. extern int syswarn();
  32.  
  33. typedef enum {false, true} bool;
  34. typedef union {char *s; int *i; float *f; double *ff} mixed;
  35.